home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / tex-k-archive.gz / tex-k-archive / 000516_tim@maths.tcd.ie_Fri Apr 29 18:57:13 1994.msg < prev    next >
Internet Message Format  |  1994-10-11  |  1KB

  1. Received: from salmon.maths.tcd.ie by cs.umb.edu with SMTP id AA09049
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Fri, 29 Apr 1994 18:57:13 -0400
  3. Received: from hamilton.maths.tcd.ie by salmon.maths.tcd.ie
  4.            Via SMTP (FibreOptic) id aa21302; 29 Apr 94 23:57 BST
  5. Subject: Re: can't find yywrap
  6. To: Richard Coleman <coleman@math.gatech.edu>
  7. Date: Fri, 29 Apr 1994 23:57:07 (BST)
  8. From: Timothy Murphy <tim@maths.tcd.ie>
  9. Cc: tex-k@cs.umb.edu
  10. In-Reply-To: <9404290225.AA19186@math> from "Richard Coleman" at Apr 28, 94 10:26:00 pm
  11. X-Mailer: ELM [version 2.4 PL21]
  12. Mime-Version: 1.0
  13. Content-Type: text/plain; charset=US-ASCII
  14. Content-Transfer-Encoding: 7bit
  15. Content-Length: 623       
  16. Message-Id:  <9404292357.aa08880@hamilton.maths.tcd.ie>
  17.  
  18. > I'm trying to build web2c/web-6.1.  I'm also trying to use
  19. > kpathsea-1.8.  I applied the patch to ourpaths.c.  Other than
  20. > that, I'm doing a standard install (on a SunOS 4.1.3).  I keep
  21. > getting
  22. > gcc -o web2c -O -I/usr/openwin/include   web2c.o y.tab.o lex.yy.o \
  23. >    ../lib/lib.a ../../kpathsea/kpathsea.a  
  24. > ld: Undefined symbol 
  25. >    _yywrap 
  26. > collect2: ld returned 2 exit status
  27.  
  28. yywrap() should be defined in the flex library (libfl.a on my system).
  29. But you can safely say
  30.  
  31. #define yywrap() 1
  32.  
  33. in an appropriate file, eg web2c.h.
  34. This just says that you only want to process one .lex file at a time.
  35.  
  36. Tim
  37.